home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / communic / imex / errors.fr_ / errors.fr
Text File  |  1995-12-06  |  1KB  |  47 lines

  1. VERSION 4.00
  2. Begin VB.Form ViewErrors 
  3.    Caption         =   "View Errors"
  4.    ClientHeight    =   3615
  5.    ClientLeft      =   2100
  6.    ClientTop       =   3465
  7.    ClientWidth     =   7380
  8.    Height          =   4020
  9.    HelpContextID   =   510
  10.    Icon            =   "ERRORS.frx":0000
  11.    Left            =   2040
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   3615
  14.    ScaleWidth      =   7380
  15.    Top             =   3120
  16.    Width           =   7500
  17.    Begin VB.TextBox Text1 
  18.       Appearance      =   0  'Flat
  19.       BorderStyle     =   0  'None
  20.       Height          =   1980
  21.       Left            =   0
  22.       Locked          =   -1  'True
  23.       MousePointer    =   1  'Arrow
  24.       MultiLine       =   -1  'True
  25.       ScrollBars      =   3  'Both
  26.       TabIndex        =   0
  27.       TabStop         =   0   'False
  28.       Top             =   0
  29.       Width           =   3720
  30.    End
  31. End
  32. Attribute VB_Name = "ViewErrors"
  33. Attribute VB_Creatable = False
  34. Attribute VB_Exposed = False
  35. Option Explicit
  36. Private Sub Form_Paint()
  37.     Screen.MousePointer = vbDefault
  38. End Sub
  39. Private Sub Form_Resize()
  40.     Text1.Width = ScaleWidth
  41.     Text1.Height = ScaleHeight
  42. End Sub
  43. Private Sub Form_Unload(Cancel As Integer)
  44.     Screen.MousePointer = vbHourglass
  45. End Sub
  46.  
  47.